home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19980424-19980901 / 000310_news@newsmaster….columbia.edu _Wed Jul 29 09:38:57 1998.msg < prev    next >
Internet Message Format  |  1998-08-31  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA20011
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 29 Jul 1998 09:38:57 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA18371
  7.     for kermit.misc@watsun; Wed, 29 Jul 1998 09:38:56 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Serial ports, cables, and terminals
  12. Date: 29 Jul 1998 13:38:55 GMT
  13. Organization: Columbia University
  14. Lines: 54
  15. Message-ID: <6pn8lf$1p7$1@apakabar.cc.columbia.edu>
  16. References: <6pn0jk$7s0$1@nnrp1.dejanews.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9018
  19.  
  20. In article <6pn0jk$7s0$1@nnrp1.dejanews.com>,  <martinja@exis.net> wrote:
  21. : I have been trying to set up a terminal for my dad. He is using an old
  22. : 386 with a bootdisk running C-Kermit for MSDOS. 
  23. :
  24. You mean MS-DOS Kermit?
  25.  
  26. : I am running Linux 2.0.34
  27. : (Slackware 3.4). I am trying to use a null modem cable to connect out two
  28. : serial ports together. We are using the 25 pin serial ports. The null modem
  29. : adapter I bought at CompUSA did not work, so my dad took apart the serial
  30. : cable and rewired it to these specs:
  31. :            PC male DB25                            Terminal DB25
  32. :            TxD   Transmit Data         2 --> 3     RxD   Receive Data
  33. :            RxD   Receive Data          3 <-- 2     TxD   Transmit Data
  34. :            RTS   Request To Send       4 --> 5     CTS   Clear To Send
  35. :            CTS   Clear To Send         5 <-- 4     RTS   Request To Send
  36. :            DSR   Data Set Ready        6
  37. :                                        |
  38. :            DCD   Carrier Detect        8 <-- 20    DTR   Data Terminal Ready
  39. :            SG    Signal Ground         7 --- 7     SG    Signal Ground
  40. :                                              6     DSR   Data Set Ready
  41. :                                              |
  42. :            DTR   Data Terminal Ready  20 --> 8     DCD   Carrier Detect
  43. This is about what a commercial null modem cable would do.  So if neither
  44. cable works, it is probably not a cable problem.
  45.  
  46. : The connect still does not work! I have Linux using agetty for the serial
  47. : connection. It ran for half an hour without any errors, but the terminal
  48. : showed nothing on the screen. Is that the right config for a serial PC-PC
  49. : connection? How can I test if the serial ports and cable actually work?
  50. : When I type "show modem" in C-Kermit this is the output:
  51. :         Modem is not ready: DSR is off
  52. :         no carrier detect: CD is off (set carrier is off)
  53. :         no Clear to send: CTS is off
  54. : With the serial config shown above shouldn't I have a modem ready status?
  55. :
  56. Has Kermit been started on the 386?  Has it been told to SET PORT x, where
  57. x is the appropriate COM port number?
  58.  
  59. The object is to let the 386 log in to Linux, right?  So until this works,
  60. you don't need C-Kermit on Linux for anything.  As long as you have a getty
  61. running on the port to which the cable is connected, and the cable indeed
  62. does what you say it does (all pins work), and the serial ports are not
  63. broken, and there are no interrupt conflicts, etc etc, it should work.
  64.  
  65. You can use "show comm" in MS-DOS Kermit to look at the modem signals.
  66. Or, if you have an external modem handy, try plugging each end of the cable
  67. into it, gender permitting, and see what lights do and don't go on.
  68.  
  69. - Frank